home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 2.toast / pc / sample code / quicktime / basics / mfc mdiplayer.win / mfcmdiplayer.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  1009 b   |  40 lines

  1. // MFCMDIPlayer.h : main header file for the MFCMDIPLAYER application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMFCMDIPlayerApp:
  12. // See MFCMDIPlayer.cpp for the implementation of this class
  13. //
  14.  
  15. class CMFCMDIPlayerApp : public CWinApp
  16. {
  17. public:
  18.     CMFCMDIPlayerApp();
  19.  
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(CMFCMDIPlayerApp)
  23.     public:
  24.     virtual BOOL InitInstance();
  25.     virtual int ExitInstance();
  26.     //}}AFX_VIRTUAL
  27.  
  28. // Implementation
  29.  
  30.     //{{AFX_MSG(CMFCMDIPlayerApp)
  31.     afx_msg void OnAppAbout();
  32.         // NOTE - the ClassWizard will add and remove member functions here.
  33.         //    DO NOT EDIT what you see in these blocks of generated code !
  34.     //}}AFX_MSG
  35.     DECLARE_MESSAGE_MAP()
  36. };
  37.  
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40.